/* ---------{ Default  CSS } ---------- */
/* Variables */
* {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden !important;
  font-size: 13px;
  line-height: 25px;
  font-family: Arial, "Microsoft YaHei", "宋体", serif, sans-serif;
  font-weight: normal;
  background: #edeadf;
}

.container {
  max-width: 1170px;
}

h1, h2, h3, h4, h5, h6 {
  color: #333;
  margin: 0;
}

p {
  color: #333;
  line-height: 24px;
}

a,
a:hover,
a:focus {
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  text-decoration: none;
  outline: none;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

ol li,
ul li {
  list-style: outside none none;
  list-style-type: none;
}

.form-control:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

input:focus, select:focus {
  outline: none;
}

.search-form.form-control {
  font-size: 16px;
}

.p-0 {
  padding: 0;
}

.p-r-0 {
  padding-right: 0;
}

.p-l-0 {
  padding-left: 0;
}

.m-l-15 {
  margin-left: 15px;
}

.m-r-15 {
  margin-right: 15px;
}

.m-b-0 {
  margin-bottom: 0 !important;
}

.m-b-30 {
  margin-bottom: 30px;
}

.p-b-30:last-child {
  margin-bottom: 0;
}

.one-more{
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
  padding: 1px 0;
}

.two-more{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sub-title {
  text-align: center;
  max-width: 650px;
  margin: 0px auto 50px;
}

.sub-title h2 {
  color: #333;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 66px;
}

.sub-title p {
  margin: 0px auto;
  line-height: 30px;
  font-size: 16px;
}

.btn-default-style {
  background: #ffffff;
  border-radius: 3px;
  color: #63065f;
  height: 48px;
  line-height: 48px;
  padding: 0 32px;
  font-size: 16px;
  margin-top: 40px;
  font-weight: 600;
}

.btn-default-style:hover {
  color: #63065f;
}

/*=======[ Index 1 and 2 Shape Css ]========*/
.shape-1 {
  position: absolute;
  bottom: 100px;
  left: 0;
}

.shape-1 .box {
  align-self: flex-end;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  background: url("../images/shape/shape-01.png");
  height: 360px;
  width: 158px;
  margin: 0 auto 0 auto;
  transform-origin: bottom;
}

.shape-1 .bounce-1 {
  animation-name: bounce-1;
  animation-timing-function: linear;
}

@keyframes bounce-1 {
  0% {
    transform: translateY(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
  }

  50% {
    transform: translateY(100px);
    -ms-transform: translateY(100px);
    -webkit-transform: translateY(100px);
  }

  100% {
    transform: translateY(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
  }
}
/*=========={ Header Area }==============*/

.header .navbar {
  padding: 35px 0 0;
  position: absolute;
  z-index: 2;
  top: 0;
  width: 100%;
}

header .navbar .navbar-brand img {
  width: 220px;
}

.header .navbar .navbar-nav .nav-item {
  margin-left: 50px;
}

.header .navbar .navbar-nav .nav-item:last-child .nav-link {
  margin-right: 0px;
}

.header .navbar .navbar-nav .nav-item .nav-link {
  color: #ffffff;
  font-size: 16px;
  padding: 20px 0;
  font-weight: 400;
  position: relative;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.header .navbar .navbar-nav .nav-item .nav-link:before {
  position: absolute;
  height: 1px;
  width: 0%;
  background: #ffffff;
  content: "";
  bottom: 20px;
  left: 0;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.header .navbar .navbar-nav .nav-item .nav-link:hover:before {
  width: 100%;
}

.header .navbar .navbar-nav .nav-item .nav-link.active {
  color: #ffffff;
  position: relative;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.header .navbar .navbar-nav .nav-item .nav-link.active:before {
  position: absolute;
  height: 1px;
  width: 100%;
  background: #ffffff;
  content: "";
  bottom: 20px;
  left: 0;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.header .navbar .login-btn ,
.header .navbar .border-btn {
  height: 30px;
  border-radius: 3px;
  line-height: 28px;
  padding: 0 18px;
  font-size: 16px;
  margin-left: 20px;
}

.header .navbar .login-btn {
  color: #63065f;
  background: #ffffff;
}

.header .navbar .login-btn:hover {
  color: #ffffff;
  background: #63065f;
}

.header .navbar .border-btn{
  color: #ffffff;
  border: 1px solid #ffffff;
}

.header .navbar .border-btn:hover{
  color: #63065f;
  border-color: #fff;
  background: #fff;
}

.header .navbar .user, .header .navbar .user a {
  color: #fff;
}

.header .top-nav {
  background: #63065f;
  z-index: 2;
  top: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
}

.header .top-nav ul {
  display: flex;
}

.header .top-nav ul li a {
  display: block;
  font-size: 15px;
  color: #fff;
  padding: 0 30px;
}

.header .top-nav ul li.active {
  background: #480345;
}

.header .img-wrapper .intro-img {
  margin-top: 55px;
}

.header .img-wrapper .intro-img img {
  height: auto;
  width: 109%;
  margin-left: -4px;
}

.header .intro-text {
  margin-top: 180px;
  padding-left: 10px;
}

.header .intro-text h1 {
  font-size: 56px;
  color: #ffffff;
  font-weight: 700;
  line-height: 68px;
}

.header .intro-text p {
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
  margin-top: 10px;
}

.topbg {
  background: url(../images/banner-logo.jpg) center center;
  height: 380px;
}

.topbg-inner {
  background: url(../images/banner-logo.jpg) center 0;
  height: 110px;
}

/*=========={ Search Form }==============*/
.search-form {
  margin-top: -92px;
}

.search-form .search-form-wrapper {
  background: #ffffff;
  padding: 40px 100px 40px 40px;
  box-shadow: 0 0 80px 0px rgba(55, 5, 55, 0.15);
  border-radius: 5px;
}

.search-form .search-form-wrapper h2 {
  display: none;
}

.search-form .search-form-wrapper .form-group {
  margin-bottom: 0;
}

.search-form .search-form-wrapper .form-group .form-items {
  display: flex;
  justify-content: center;
  position: relative;
}

.search-form .search-form-wrapper .form-group .form-items .form-single {
  width: 100%;
  padding-right: 6px;
  position: relative;
}

.search-form .search-form-wrapper .form-group .form-items .down-icon {
  position: absolute;
  bottom: 22px;
  right: 28px;
  content: "";
  z-index: 99;
  font-size: 16px;
}

.search-form .search-form-wrapper .form-group .form-items label {
  color: #384a5e;
  font-size: 16px;
  font-weight: 500;
  padding-left: 20px;
}

.search-form .search-form-wrapper .form-group .form-items input {
  -moz-user-select: none;
  background: #f8f7f2;
  border: none;
  color: #999;
  height: 52px;
  padding: 16px 20px;
  position: relative;
  text-align: left;
  width: 100%;
  border-radius: 0;
}

.search-form .search-form-wrapper .form-group .form-items input:focus {
  outline: none;
}

.search-form .search-form-wrapper .form-group .form-items input::-webkit-input-placeholder {
  color: #999;
}

.search-form .search-form-wrapper .form-group .form-items input::-moz-input-placeholder {
  color: #999;
}

.search-form .search-form-wrapper .form-group .form-items input::-ms-input-placeholder {
  color: #999;
}

.search-form .search-form-wrapper .form-group .form-items select {
  height: 52px;
  border-radius: 0px;
  background: #f8f7f2;
  border: none;
  position: relative;
}

.search-form .search-form-wrapper .form-group .form-items::after {
  display: block;
  content: "";
  background: url(../images/select-icon.png) 0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  width: 10px;
  height: 5px;
  left: 100px;
  top: 23px;
}

.search-form .search-form-wrapper .form-group .form-items select option {
  background: #f8f7f2;
  padding: 5px 15px;
}

.search-form .search-form-wrapper .form-group .form-items .form-select {
  padding: 0 40px 0 30px;
  font-size: 16px;
}

.search-form .search-form-wrapper .form-group .form-items .form-span {
  background: #f8f6f2;
  line-height: 52px;
  color: #c6c6c2;
}

.search-form .search-form-wrapper .form-group .form-items .search-btn {
  position: absolute;
  right: -60px;
  bottom: 0;
}

.search-form .search-form-wrapper .form-group .form-items .search-btn button {
  background: #63065f;
  border: medium none;
  border-radius: 5px;
  color: #ffffff;
  font-size: 18px;
  height: 52px;
  width: 56px;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  border-radius: 5px;
}

.search-form .search-form-wrapper .form-group .form-items .search-btn button i:before {
  font-size: 30px;
  margin: 0;
  line-height: 53px;
}

.search-form .search-form-wrapper .form-group .form-items .search-btn button:hover {
  background: #63065f;
  cursor: pointer;
}

.senior {
  position: absolute;
  right: 56px;
  margin-top: 3px;
  color: #cfc7b3;
}

.senior:hover  {
  color: #a79e88;
}

/*=========={ Packages Css }==============*/
.packages {
  padding: 100px 0 150px;
  background: #f3f4f6;
}

.packages .singel-packages-1 {
  margin-right: 5px;
}

.packages .singel-packages-2 {
  margin: 0 1px;
}

.packages .singel-packages-3 {
  margin-left: 5px;
}

.packages .singel-packages {
  background: #ffffff;
  box-shadow: 0 0 25px 0px rgba(0, 0, 0, 0.05);
}

.packages .singel-packages:hover .img-wrapper img {
  transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
}

.packages .singel-packages .img-wrapper {
  max-height: 385px;
  overflow: hidden;
}

.packages .singel-packages .img-wrapper img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  -webkit-transform: all 0.3s ease-in-out;
}

.packages .singel-packages .packages-title {
  padding: 15px 25px 25px;
}

.packages .singel-packages .packages-title h3 a {
  font-weight: 600;
  font-size: 24px;
  color: #384a5e;
}

.packages .singel-packages .packages-title p {
  margin-bottom: 15px;
}

.packages .singel-packages .packages-title p span {
  color: #384a5e;
  font-weight: 600;
}

.packages .singel-packages .packages-title .booking-btn {
  color: #63065f;
  font-weight: 600;
  position: relative;
  padding-right: 30px;
}

.packages .singel-packages .packages-title .booking-btn:hover:before {
  width: 30px;
  background: #63065f;
}

.packages .singel-packages .packages-title .booking-btn:before {
  position: absolute;
  bottom: 8px;
  left: 95px;
  height: 3px;
  width: 20px;
  content: "";
  background: #63065f;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}


/*=========={ News }==============*/

.news {
  position: relative;
  padding: 80px 0;
}

.news .sub-title {
  text-align: left;
  margin: 0;
  margin-bottom: 20px;
}

a.news-more {
  font-size: 12px;
  background: #cfc7b3;
  color: #fff;
  font-weight: 200;
  padding: 3px 6px;
  border-radius: 3px;
}

a.news-more:hover {
  background: #a79e88;
}

.focus-news li {
  display: flex;
  margin-bottom: 20px;
  padding-right: 50px;
}

.date-block {
  display: block;
  margin-right: 25px;
  text-align: center;
}

.date-day {
  font-size: 26px;
  color: #fff;
  font-weight: bold;
  background: #63065f;
  width: 90px;
  height: 40px;
  line-height: 40px;
}

.date-month {
  font-size: 14px;
  background: #fff;
  width: 90px;
  height: 30px;
  line-height: 30px;
}

a.news-title {
  display: block;
  color: #63065f;
  font-size: 16px;
  font-weight: 500;
  width: 580px;
}

p.two-more {
  position: relative;
  line-height: 24px;
  max-height: 48px;
  overflow: hidden;
}

.focus-files {
  background: #dfd9cb;
  padding: 25px;
  border-top: 6px solid #63065f;
}

.focus-files li {
  border-bottom: 1px dashed #cfc7b3;
  line-height: 46px;
}

.focus-files li:last-child {
  border-bottom: none;
}

a.files-title {
  display: block;
  color: #63065f;
  font-size: 15px;
}

/*=========={ All Css }==============*/
.all-packages {
  padding: 130px 0 100px;
  background: url(../images/all-bg.png) center center;
}

/*=========={ Hot Css }==============*/
.hot {
  padding: 100px 0 100px;
  position: relative;
}

.hot .sub-title{
  text-align: left;
  margin-bottom: 20px;
}

.hot ul {
  padding-right: 50px;
}

.hot ul li {
  margin-bottom: 1em;
}

.hot ul li a {
  font-size: 16px;
  color: #333;
}

.hot ul li a:hover {
  color: #63065f;
}

.hot .shape-1 {
  position: absolute;
  right: 0;
}

.hot .shape-1 .box {
  align-self: flex-end;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  background: url(../images/shape/shape-02.png) no-repeat 50% 50%;
  height: 360px;
  width: 160px;
  margin: 0 auto 0 auto;
  transform-origin: bottom;
  right: 0;
  position: absolute;
}

/*=========={ expert }==============*/
.expert {
  padding: 80px 0;
  background: #dfd9cb;
}

.expert .sub-title h2 {
  margin-bottom: 15px;
}

.expert .sub-title p {
  font-size: 18px;
}

.expert #expert_carousel .review_singel {
  cursor: pointer;
  box-shadow: 0 0 25px -8px rgba(55, 5, 55, 0.2);
  display: inline-flex;
  margin: 0 15px 15px;
  background: #fff;
  border-radius: 10px;
  width: 320px;
  height: 210px;
  overflow: hidden;
}

.expert #expert_carousel .review_singel .expert-img {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  width: 160px;
  height: 100%;
  background-image: url(../../img/broken-image.png);
  background-color: #EDEADF;;
  background-size: cover;
  background-position: center;
}

.expert #expert_carousel .review_singel .expert-user {
  padding: 25px;
}

.expert #expert_carousel .review_singel .expert-user h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}

.expert #expert_carousel .review_singel .expert-user h3::before {
  display: block;
  content: "";
  width: 25px;
  height: 5px;
  background: #63065f;
  margin-bottom: 15px;
}

.expert .owl-controls .owl-page.active span {
  background: #63065f;
}

.expert .owl-controls .owl-page span {
  width: 9px;
  height: 9px;
  margin: 0px 6px;
  background: #63065f33;
}

/*=========={ detail }==============*/
.detail-header {
  padding: 50px 0;
  background: url(../images/all-bg.png) center center;
  min-height: 200px;
}

.detail-header .sub-title {
  margin-bottom: 30px;
}

.quick-to-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #edeadf;
  padding: 20px 0;
  box-shadow: 0 2px 10px #dfd9cbbb;
  z-index: 9;
}

ul.quick-to {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 9;
}

ul.quick-to li {
  position: relative;
  padding: 0 30px;
  margin-right: 100px;
}

ul.quick-to li:last-child {
  margin-right: 0;
}

ul.quick-to li a::after {
  position: absolute;
  top: 10px;
  right: 0;
  margin-right: -100px;
  display: block;
  content: "";
  height: 3px;
  width: 100px;
  background: url(../images/quickto.png) 0 0 repeat-x;
}

ul.quick-to li:last-child a::after {
  background: none;
}

ul.quick-to li a{
  font-size: 15px;
  color: #bdb49e;
}

ul.quick-to li.active a{
  color: #333;
}

.detail-main {
  padding: 60px;
}

.detail-main .sub-title {
  text-align: left;
  margin: 0;
}

.detail-main .showmore {
  display: block;
  margin-bottom: 20px;
  color: #63065f77;
}

.detail-main .showmore:hover {
  color: #63065f;
}

.has-bg {
  background: #dfd9cb;
}

.detail-main .detail-item .item-title {
  float: left;
  background: #dfd9cb;
  padding: 6px 30px;
  font-size: 15px;
}

.has-bg.detail-main .detail-item .item-title {
  background: #bdb49e55;
}

.detail-main .detail-item .item-title span {
  margin-left: 5px;
  color: #888171;
}

.detail-main .detail-item .item-group {
  clear: both;
  border-top: 1px solid #bdb49e;
  padding: 20px 0;
}

.detail-main .detail-item .item-group .item-group-item {
  display: flex;
}

.detail-main .detail-item .item-group .item-group-item label {
  width: 120px;
  text-align: right;
  margin-right: 20px;
  color: #888171;
}

.detail-main .detail-item .item-group .item-group-item a {
  color: #333;
  margin-bottom: 0.5rem;
}

.detail-main .detail-item .item-group .item-group-item a:hover {
  color: #63065f;
  text-decoration: underline;
  text-underline-position: under;
}

.expert-info {
  background: #dfd9cb;
  padding: 100px 0;
}

.expert-info #unit_expert_carousel .expert-info_single {
  padding: 0 15px;
  cursor: pointer;
  display: block;
}

.expert-info .expert-info-badge {
  z-index: 2;
  position: absolute;
  right: 10px;
  font-size: 12px;
  writing-mode:vertical-rl;
}

.expert-info .expert-info-badge .expert-info-badge-t {
  display: block;
  color: #fff;
  width: 24px;
  height: 34px;
  text-align: center;
  background: #ac458e;
}

.expert-info .expert-info-badge .expert-info-badge-t::before {
  display: block;
  content: "";
  position: absolute;
  top: 34px;
  border-left: 12px solid #ac458e;
  border-right: 12px solid #ac458e;
  border-bottom: 10px solid transparent;
}

.expert-info .expert-info-badge .expert-info-badge-s {
  display: block;
  color: #fff;
  width: 24px;
  height: 34px;
  text-align: center;
  background: #e5972e;
}

.expert-info .expert-info-badge .expert-info-badge-s::before {
  display: block;
  content: "";
  position: absolute;
  top: 34px;
  border-left: 12px solid #e5972e;
  border-right: 12px solid #e5972e;
  border-bottom: 10px solid transparent;
}

.expert-info #unit_expert_carousel .expert-info_single:hover .expert-info_img:before {
  opacity: 0.8;
  bottom: 0;
}

.expert-info #unit_expert_carousel .expert-info_single .expert-info_img {
  position: relative;
  width: 165px;
  height: 220px;
  overflow: hidden;
  border-radius: 5px;
}

.expert-info #unit_expert_carousel .expert-info_single .expert-info_img:before {
  position: absolute;
  content: "";
  bottom: 50px;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  opacity: 0;
  border-radius: 5px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.expert-info #unit_expert_carousel .expert-info_single .expert-info_img .expert-info-name {
  z-index: 2;
  display: block;
  position: absolute;
  text-align: center;
  bottom: 0;
  width: 100%;
  background: rgba(55, 5, 55, 0.7);
  color: #fff;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
}

.expert-info #unit_expert_carousel .expert-info_single .expert-info_img > .expert-info_bg {
  width: 100%;
  height: 100%;
  background-image: url(../../img/broken-image.png);
  background-color: #EDEADF;;
  background-size: cover;
  background-position: center;
  transition: all .33s;
}

.expert-info #unit_expert_carousel .expert-info_single:hover .expert-info_img > .expert-info_bg {
  transform: scale(1.05);
}

.expert-info .owl-controls {
  position: absolute;
  width: 100%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  top: 40%;
}

.expert-info .owl-controls .owl-prev, .expert-info .owl-controls .owl-next {
  position: absolute;
  box-shadow: 0 0 60px 0px rgba(99, 6, 95, 0.25);
  color: #63065f !important;
  height: 62px;
  width: 62px;
  line-height: 70px;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.expert-info .owl-controls .owl-prev:hover, .expert-info .owl-controls .owl-next:hover {
  background: #63065f !important;
}

.expert-info .owl-controls .owl-prev:hover i, .expert-info .owl-controls .owl-next:hover i {
  color: #ffffff;
}

.expert-info .owl-controls .owl-prev i, .expert-info .owl-controls .owl-next i {
  font-size: 35px;
  line-height: 40px;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.expert-info .owl-controls .owl-prev {
  left: 0;
  margin-left: -100px !important;
}

.expert-info .owl-controls .owl-prev i:before {
  font-size: 30px;
  margin: 0;
}

.expert-info .owl-controls .owl-next {
  right: 0;
  margin-right: -100px !important;
}

.expert-info .owl-controls .owl-next i:before {
  font-size: 30px;
  margin: 0;
}


/*=========={ 高级检索 }==============*/
.search-header {
  padding: 20px 0;
}

.search-header .d-flex {
  display: flex;
  justify-content: space-between;
}

.search-header button.search-btn{
  background: #dfd9cb;
  border: none;
  outline: none;
  margin-bottom: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.search-header .search-btn span{
  font-size: 20px;
  color: #7c6e72;
  line-height: 40px;
}

.search-header select.search-btn{
  position: relative;
  background: #dfd9cb;
  border: none;
  margin-bottom: 20px;
  width: 100px;
  height: 40px;
  border-radius: 0;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0 20px;
}

.search-header .select-box {
  position: relative;
}

.search-header .select-box::after {
    display: block;
    content: "";
    background: url(../images/select-icon.png) 0 0 no-repeat;
    background-size: 100%;
    position: absolute;
    width: 10px;
    height: 5px;
    left: 70px;
    top: 18px;
}


.search-header .search-label {
  background: #dfd9cb;
  border: none;
  margin-bottom: 20px;
  min-width: 100px;
  height: 40px;
  line-height: 40px;
  border-radius: 0;
  text-align: center;
  color: #000;
}

.search-header .search-label:not(:first-child),
.search-header .search-icon:not(:first-child) {
  margin-left: 20px
}


.search-header .search-icon {
  background: #63065f;
  border: none;
  margin-bottom: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 0;
  text-align: center;
  color: #ffffff;
}

.search-header .search-icon .fa {
  font-size: 15px;
  line-height: unset;
}

.search-header .index-az{
  display: flex;
  justify-content: space-between;
  width: 900px;
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
}

.search-header .index-az a {
  color: #7b7b7b;
}

.search-header .index-az li.active a {
  color: #63065f;
}

.search-header .search-submit {
  width: 100px;
  background: #63065f;
  color: #fff;
  height: 40px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.search-header .search-submit,
.search-header .search-submit:focus,
.search-header .search-submit:active{
  border: none;
  outline: none;
}

.search-main {
  position: relative;
  padding: 30px 0 60px;
}

.search-main .search-main-area {
  display: flex;
}

/*.search-main .search-main-area::before {*/
/*  display: block;*/
/*  content: "";*/
/*  position: absolute;*/
/*  width: 220px;*/
/*  height: 100%;*/
/*  background: #f7f5ed;*/
/*  z-index: -1;*/
/*}*/

.search-main .search-type {
  width: 220px;
  /*height: 100%;*/
  margin-right: 60px;
}

.search-main .search-type .title {
  background: #63065f;
  border-bottom: 4px solid #e09f51;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px;
  width: 220px;
  color: #fff;
}

.search-main .search-type .type-tree {
  padding: 10px 20px 20px 10px;
  background: #f7f5ed;
}

.search-main .search-result {
  border-top: 5px solid #63065f;
  width: calc(100% - 280px);
}

.search-main .search-result p.result {
  color: #999;
  margin-top: -35px;
  font-size: 12px;
}

.search-main .search-result .result-block .result-item > li {
  padding: 20px 0;
  border-bottom: 1px dashed #c6bfae;
}

.search-main .search-result .result-block .result-item > li:last-child {
  border-bottom: none;
}

.search-main .search-result .result-block ul li p.index-node {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #63065f;
}

.search-main .search-result .result-block ul li p.index-node,
.search-main .search-result .result-block ul li p.index-node a {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #63065f;
}

.search-main .search-result .result-block ul li span.result-light {
  color: #e4922d;
}

.search-main .search-result .result-block ul li ul.index-item {
  display: flex;
  flex-wrap: wrap;
}

.search-main .search-result .result-block ul li ul.index-item li a {
  cursor: pointer;
  display: block;
  margin-right: 35px;
  color: #333;
  width: 180px;
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
}

.search-main .search-result .result-block ul li ul.index-item li a:hover {
  color: #63065f;
  text-decoration: underline;
}

.d-flex.activity-type {
  display: flex;
  justify-content: flex-start;
}

.activity-type ul {
  width: calc(100% - 220px);
  display: flex;
  flex-wrap: wrap;
}

.activity-type ul li {
  background: #fff;
  text-align: center;
  min-width: 100px;
  padding: 0 10px;
  height: 40px;
  line-height: 40px;
  margin-left: 20px;
  margin-bottom: 20px;
  cursor: pointer;
}

.activity-type ul li.active {
  position: relative;
  background: #e6ded8;
  color: #63065f;
}

.activity-type ul li.active::after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: url(../images/type-check.png) 0 0 no-repeat;
  background-size: cover;
}

/*=========={ pagePagination 翻页 }==============*/
.pagePagination {
  border-top: 5px solid #63065f;
  padding-top: 15px;
  font-size: 0;
  -webkit-text-size-adjust:none;
}

.pagePagination .first,
.pagePagination .num {
  font-size: 13px;
  background: #dfd9cb;
  color:#7c6e72;
  display:inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 3px;
}

.pagePagination .num {
  color: #333;
}

.pagePagination .num.active {
  background: #fff;
}

.pagePagination #number {
  display:inline-block;
  vertical-align:top;
}

.pagePagination .current {
  background: #dfd9cb;
  color:#7c6e72;
  display:inline-block;
  font-size: 13px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  margin-right: 3px;
}

.pagePagination #inp {
  width: 30px;
  font-size: 13px;
  border: none;
  background: inherit;
}

.pagePagination .jump {
  display:inline-block;
  background: #dfd9cb;
}

.pagePagination .jump span {
  display:inline-block;
  font-size: 13px;
  color:#7c6e72;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
}

.pagePagination .l_jump {
  font-size: 13px;
  background: #63065f;
  color:#fff;
  display:inline-block;
  text-align: center;
  height: 40px;
  width: 40px;
  line-height: 40px;
}

/*=========={ Footer Area }==============*/
.footer {
  padding-top: 100px;
  position: relative;
  z-index: 1;
  background-size: cover !important;
  background: url("../images/footer-bg.jpg") no-repeat 50% 50%;
}

.footer:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.8;
}

.footer .footer-col-list {
  padding: 0 15px;
}

.footer .footer-col-list .footer_single_col_1 {
  width: 25%;
}

.footer .footer-col-list .footer_single_col_2 {
  width: 25%;
}

.footer .footer-col-list .footer_single_col_1 .subscribe-social {
  margin-top: 50px;
}

.footer .footer-col-list .footer_single_col_1 .subscribe-social .social-items {
  display: flex;
  justify-content: center;
}

.footer .footer-col-list .footer_single_col_1 .subscribe-social .social-items li {
  margin-right: 15px;
  padding-bottom: 0;
}

.footer .footer-col-list .footer_single_col_1 .subscribe-social .social-items li:last-child {
  margin-right: 0;
}

.footer .footer-col-list .footer_single_col_1 .subscribe-social .social-items li a:hover {
  padding-left: 0;
}

.footer .footer-col-list .footer_single_col_1 .subscribe-social .social-items li a i {
  border: 1px solid #ffffff;
  color: #ffffff;
  height: 46px;
  width: 46px;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  font-size: 16px;
  margin: 0;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.footer .footer-col-list .footer_single_col_1 .subscribe-social .social-items li a i:hover {
  background: #fff;
  color: #63065f;
}

.footer .footer-col-list .footer-single-col .subtitle_1 {
  color: #fff;
  text-transform: none;
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 600;
}

.footer .footer-col-list .footer-single-col ul li {
  padding-bottom: 7px;
  color: #fff;
  font-weight: 400;
}

.footer .footer-col-list .footer-single-col ul li:last-child {
  padding-bottom: 0px;
}

.footer .footer-col-list .footer-single-col ul li a {
  color: #b49abb;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  font-weight: 400;
}

.footer .footer-col-list .footer-single-col ul li a:hover {
  color: #fff;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  padding-left: 3px;
}

.footer .copyright {
  text-align: center;
}

.footer .copyright p {
  font-size: 13px;
  margin-top: 80px;
  padding: 30px 0;
  border-top: 1px solid #863b8a;
  line-height: 18px;
  color: #8e6894;
  margin-bottom: 0;
}

/*===================== { 51.  Inner Pages Header Css } =================*/
.inner-pages {
  min-height: 450px;
  background: #d7d7d7;
}

.inner-pages .navbar {
  padding: 40px 0 0;
  position: absolute;
  z-index: 2;
  top: 0;
  width: 100%;
}

.inner-pages .navbar .navbar-brand img {
  width: 150px;
}

.inner-pages .navbar .navbar-nav .nav-item {
  margin-left: 50px;
}

.inner-pages .navbar .navbar-nav .nav-item:last-child .nav-link {
  margin-right: 0px;
}

.inner-pages .navbar .navbar-nav .nav-item .nav-link {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}

.inner-pages .navbar .navbar-nav .nav-item .nav-link.active, .inner-pages .navbar .navbar-nav .nav-item .nav-link:hover {
  color: #ffffff;
  position: relative;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.inner-pages .navbar .login-btn {
  background: #63065f;
  border-radius: 3px;
  color: #ffffff;
  height: 48px;
  line-height: 48px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 600;
  margin-left: 90px;
}

.inner-pages .navbar .login-btn:hover {
  color: #ffffff;
}

.inner-pages .intro-text {
  margin-top: 100px;
  padding-left: 0px;
}

.inner-pages .intro-text .title {
  font-size: 55px;
  margin-bottom: 30px;
}

.inner-pages .intro-text .page-link {
  background-color: transparent;
  border: none;
  padding: 0;
}

.inner-pages .intro-text .page-link a {
  background: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  margin-right: 30px;
}

.inner-pages .intro-text .page-link a:last-child {
  margin-right: 0;
}

.inner-pages .intro-text .page-link a:last-child:before {
  display: none;
}

.inner-pages .intro-text .page-link a:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  right: -23px;
  top: 2px;
}


/*++++++++老版本样式调整++++++++*/
.main-detail {
  padding: 60px;
  position: relative;
}
.widget-header-x {
  color: #333;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 66px;
}
.widget-body table {
  width: 100%;
  margin-bottom: 20px;
}
.widget-body table tr td p {
  float: left;
  background: #dfd9cb;
  padding: 6px 30px;
  margin-bottom: 0;
  font-size: 15px;
}
.widget-body table tr:first-child {
  border-bottom: 1px solid #bdb49e;
}
.widget-body table tr td {
  padding: 5px;
}
.widget-body table tr:first-child td {
  padding: 0;
}
.widget-body table tr td .lable {
  margin-right: 10px;
  color: #888171;
}

.widget-body table tr td .empty-value {
  user-select: none;
  color: #c3bfb4;
  font-weight: bold;
}

button.to-print {
  cursor: pointer;
  font-size: 12px;
  background: #8f00a7;
  color: #fff;
  font-weight: 200;
  padding: 0 23px;
  height: 30px;
  line-height: 30px;
  border-radius: 3px;
  border: none;
}

button.to-print:hover {
  background: #6a00a0;
}

.read-more {
  margin-top:20px;
  padding:10px 20px;
  text-align: center;
  color:#666;
  background:#dfd9cb;
  width:100%;
  box-sizing:border-box;
}

.modal-login {
    padding: 40px;
    box-shadow: 0 0 80px 0px rgba(55, 5, 55, 0.15);
    background: #fff;
    width: 400px;
    margin: 0 auto;
}

.login-tab {
    display: flex;
    justify-content: space-around;
    margin-top: -55px;
    height: 50px;
    line-height: 50px;
    margin-bottom: 40px;
}
.login-tab > li a {
    display: block;
    height: 50px;
    line-height: 50px;
    background: #f8f7f2;
  color: #333;
    width: 199px;
    text-align: center;
}
.login-tab > li.active a {
    background: #fff;
}
.btn-login {
    background: #63065f;
    color: #fff;
}

.login-to a {
  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.05);
  background: #ffffff;
  border-radius: 50%;
  color: #63065f;
  font-size: 20px;
  height: 60px;
  line-height: 60px;
  position: fixed;
  text-align: center;
  bottom: 50px;
  width: 60px;
  z-index: 999;
}

/*---------首页悬悬浮按钮---------*/

.float-button-group {
  z-index: 9999;
  position: fixed;
  right: 20px;
  bottom: 20px;
}

.float-button-group > div {
  cursor: pointer;
  width: 50px;
  height: 50px;
  margin-top: 10px;
  box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.05);
  background: #ffffff;
  border-radius: 50%;
  color: rgba(99, 6, 95, 0.78);
  font-size: 16px;
  text-align: center;
  user-select: none;
  transition: all .33s;
  opacity: 0.75;
}

.float-button-group > div > i {
  line-height: 50px;
}

.float-button-group > div:hover {
  transform: scale(0.97);
  opacity: 1;
}

.float-button-group > div:active {
  transform: scale(0.87);
  opacity: 0.8;
}

.float-button-group > div.disabled {
  margin-bottom: -60px;
  visibility: hidden;
  opacity: 0;
}

/*------------------*/